

#########################################################################
# The USSR offers peace with the Western Allies 
#########################################################################
event = { 
	id = 5151
	random = no
	country = SOV
	
	trigger = {
		OR = {
			AND = {
				war = { country = SOV country = ENG }
				NOT = { alliance = { country = GER country = ENG } }
			}
			AND = {
				war = { country = SOV country = FRA }
				NOT = { alliance = { country = GER country = FRA } }
			}
			AND = {
				war = { country = SOV country = USA }
				NOT = { alliance = { country = GER country = USA } }
			}
		}	
		OR = {
			war = { country = SOV country = GER }
			event = 2628 #Finland accepts Soviet peace proposal
		}
		NOT = {
			AND = { 
				war = { country = SOV country = SWE }
				NOT = { alliance = { country = GER country = SWE } }
			}
		}
		OR = {

		}
	}
	
	name = "The USSR offers peace with the Western Allies"
	desc = "Given these new circumstances, we have good hope that the capitalist powers will accept a peace proposal without any further loss or gain for either side."

	style = 0
	
	date = { day = 1 month = january year = 1936 }
	offset = 10 # Check for trigger conditions every day
	deathdate = { day = 30 month = december year = 1947 }
	
	action_a = {
		name = "Offer peace to the Capitalist Powers"
		command = { type = trigger which = 5152 } #ENG
		command = { type = trigger which = 5153 } #FRA
		command = { type = trigger which = 5154 } #USA
	}
	action_b = {
		name = "No peace with the oppressors of the working class"
		command = { }
	}
}
#########################################################################
#  Soviet Peace offer to England
#########################################################################
event = { 
	id = 5152
	random = no
	country = ENG
	
	# Triggered by SOV5151
	
	name = "Soviet peace offer to the United Kingdom"
	desc = "The British government has received a message from Soviet Premier Stalin: 'The Union of Socialist Soviet Republics offers Great Britain and its allies a peace based upon status quo. The Union of Socialist Soviet Republics is confident that its objectively generous offer will be accepted by the government of Great Britain.' Needless to say, if we refuse, socialist sympathizers might well be outraged. Under the present conditions it does seem logical to accept."

	style = 0

	action_a = {
		name = "We need peace with the USSR"
		command = { type = dissent value = -5 }
		command = { type = peace which = SOV value = 0 }
	}
	action_b = {
		name = "No peace with the Bolsheviks"
		command = { type = dissent value = 10 }
	}
}
#########################################################################
#  Soviet Peace offer to France
#########################################################################
event = { 
	id = 5153
	random = no
	country = FRA
	
	# Triggered by SOV5151
	
	name = "Soviet peace offer to France"
	desc = "The French government has received a message from Soviet Premier Stalin: 'The Union of Socialist Soviet Republics offers the Republic of France and its allies a peace based upon status quo. The Union of Socialist Soviet Republics is confident that its objectively generous offer will be accepted by the government of Great Britain.' Needless to say, if we refuse, communist party sympathizers will be outraged. Under the present conditions it does seem logical to accept."

	style = 0

	action_a = {
		name = "We need peace with the USSR"
		command = { type = dissent value = -10 }
		command = { type = peace which = SOV value = 0 }
	}
	action_b = {
		name = "No peace with the Bolsheviks"
		command = { type = dissent value = 20 }
	}
}
#########################################################################
#  Soviet Peace offer to USA
#########################################################################
event = { 
	id = 5154
	random = no
	country = ENG
	
	# Triggered by SOV5151
	
	name = "Soviet peace offer to USA"
	desc = "The United States government has received a message from Soviet Premier Stalin: 'The Union of Socialist Soviet Republics offers the United States of America and its allies a peace based upon status quo. The Union of Socialist Soviet Republics is confident that its objectively generous offer will be accepted by the government of Great Britain.' Needless to say, if we refuse, socialist sympathizers might well be outraged, but under the present conditions it does seem logical to accept."

	style = 0

	action_a = {
		name = "We need peace with the USSR"
		command = { type = dissent value = -2 }
		command = { type = peace which = SOV value = 0 }
	}
	action_b = {
		name = "No peace with the Bolsheviks"
		command = { type = dissent value = 1 }
	}
}